home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_03_06
/
3n06037a
< prev
next >
Wrap
Text File
|
1992-04-27
|
500b
|
19 lines
case WM_PAINT:
hwndFrame = GetDlgItem (hDlg, ID_BLACKFRAME);
hdcFrame = GetDC (hwndFrame);
GetClientRect (hwndFrame, &rect);
hdcMem = CreateCompatibleDC (hdcFrame);
hbmpBitmap = LoadBitmap (hInst, szBitmap);
hbmpOld = SelectObject (hdcMem, hbmpBitmap);
BitBlt (hdcFrame, 1, 1, rect.right - 2, rect.bottom - 2, hdcMem, 0, 0, SRCCOPY);
ReleaseDC (hwndFrame, hdcFrame);
SelectObject (hdcMem, hbmpOld);
DeleteObject (hbmpBitmap);
DeleteDC (hdcMem);
break;